home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 24
/
Amiga Format AFCD24 (Feb 1998, Issue 108).iso
/
-seriously_amiga-
/
shareware
/
graphics
/
agaiff
/
rexx
/
splitanim.agaiff
< prev
next >
Wrap
Text File
|
1998-01-05
|
287b
|
21 lines
/* Anim2Pictures.agaiff */
/* Converts animation into single pictures */
address agaiff_rexx
options results
'requestfile "Anim2Pictures - FileName.."'
filename = result
if filename == "" then exit
noshow
i=0
do forever
save filename||"."||i
i=i+1
anext
if rc~=0 then exit
end;